home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / os2emxpath.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  8KB  |  342 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. import os
  5. import stat
  6. __all__ = [
  7.     'normcase',
  8.     'isabs',
  9.     'join',
  10.     'splitdrive',
  11.     'split',
  12.     'splitext',
  13.     'basename',
  14.     'dirname',
  15.     'commonprefix',
  16.     'getsize',
  17.     'getmtime',
  18.     'getatime',
  19.     'getctime',
  20.     'islink',
  21.     'exists',
  22.     'lexists',
  23.     'isdir',
  24.     'isfile',
  25.     'ismount',
  26.     'walk',
  27.     'expanduser',
  28.     'expandvars',
  29.     'normpath',
  30.     'abspath',
  31.     'splitunc',
  32.     'curdir',
  33.     'pardir',
  34.     'sep',
  35.     'pathsep',
  36.     'defpath',
  37.     'altsep',
  38.     'extsep',
  39.     'devnull',
  40.     'realpath',
  41.     'supports_unicode_filenames']
  42. curdir = '.'
  43. pardir = '..'
  44. extsep = '.'
  45. sep = '/'
  46. altsep = '\\'
  47. pathsep = ';'
  48. defpath = '.;C:\\bin'
  49. devnull = 'nul'
  50.  
  51. def normcase(s):
  52.     return s.replace('\\', '/').lower()
  53.  
  54.  
  55. def isabs(s):
  56.     s = splitdrive(s)[1]
  57.     if s != '':
  58.         pass
  59.     return s[:1] in '/\\'
  60.  
  61.  
  62. def join(a, *p):
  63.     path = a
  64.     for b in p:
  65.         if isabs(b):
  66.             path = b
  67.             continue
  68.         if path == '' or path[-1:] in '/\\:':
  69.             path = path + b
  70.             continue
  71.         path = path + '/' + b
  72.     
  73.     return path
  74.  
  75.  
  76. def splitdrive(p):
  77.     if p[1:2] == ':':
  78.         return (p[0:2], p[2:])
  79.     
  80.     return ('', p)
  81.  
  82.  
  83. def splitunc(p):
  84.     if p[1:2] == ':':
  85.         return ('', p)
  86.     
  87.     firstTwo = p[0:2]
  88.     if firstTwo == '//' or firstTwo == '\\\\':
  89.         normp = normcase(p)
  90.         index = normp.find('/', 2)
  91.         if index == -1:
  92.             return ('', p)
  93.         
  94.         index = normp.find('/', index + 1)
  95.         if index == -1:
  96.             index = len(p)
  97.         
  98.         return (p[:index], p[index:])
  99.     
  100.     return ('', p)
  101.  
  102.  
  103. def split(p):
  104.     (d, p) = splitdrive(p)
  105.     i = len(p)
  106.     while i and p[i - 1] not in '/\\':
  107.         i = i - 1
  108.     head = p[:i]
  109.     tail = p[i:]
  110.     head2 = head
  111.     while head2 and head2[-1] in '/\\':
  112.         head2 = head2[:-1]
  113.     if not head2:
  114.         pass
  115.     head = head
  116.     return (d + head, tail)
  117.  
  118.  
  119. def splitext(p):
  120.     (root, ext) = ('', '')
  121.     for c in p:
  122.         None if c in ('/', '\\') else ext
  123.         if ext:
  124.             ext = ext + c
  125.             continue
  126.         root = root + c
  127.     
  128.     return (root, ext)
  129.  
  130.  
  131. def basename(p):
  132.     return split(p)[1]
  133.  
  134.  
  135. def dirname(p):
  136.     return split(p)[0]
  137.  
  138.  
  139. def commonprefix(m):
  140.     if not m:
  141.         return ''
  142.     
  143.     s1 = min(m)
  144.     s2 = max(m)
  145.     n = min(len(s1), len(s2))
  146.     for i in xrange(n):
  147.         if s1[i] != s2[i]:
  148.             return s1[:i]
  149.             continue
  150.     
  151.     return s1[:n]
  152.  
  153.  
  154. def getsize(filename):
  155.     return os.stat(filename).st_size
  156.  
  157.  
  158. def getmtime(filename):
  159.     return os.stat(filename).st_mtime
  160.  
  161.  
  162. def getatime(filename):
  163.     return os.stat(filename).st_atime
  164.  
  165.  
  166. def getctime(filename):
  167.     return os.stat(filename).st_ctime
  168.  
  169.  
  170. def islink(path):
  171.     return False
  172.  
  173.  
  174. def exists(path):
  175.     
  176.     try:
  177.         st = os.stat(path)
  178.     except os.error:
  179.         return False
  180.  
  181.     return True
  182.  
  183. lexists = exists
  184.  
  185. def isdir(path):
  186.     
  187.     try:
  188.         st = os.stat(path)
  189.     except os.error:
  190.         return False
  191.  
  192.     return stat.S_ISDIR(st.st_mode)
  193.  
  194.  
  195. def isfile(path):
  196.     
  197.     try:
  198.         st = os.stat(path)
  199.     except os.error:
  200.         return False
  201.  
  202.     return stat.S_ISREG(st.st_mode)
  203.  
  204.  
  205. def ismount(path):
  206.     (unc, rest) = splitunc(path)
  207.     if unc:
  208.         return rest in ('', '/', '\\')
  209.     
  210.     p = splitdrive(path)[1]
  211.     if len(p) == 1:
  212.         pass
  213.     return p[0] in '/\\'
  214.  
  215.  
  216. def walk(top, func, arg):
  217.     
  218.     try:
  219.         names = os.listdir(top)
  220.     except os.error:
  221.         return None
  222.  
  223.     func(arg, top, names)
  224.     exceptions = ('.', '..')
  225.     for name in names:
  226.         if name not in exceptions:
  227.             name = join(top, name)
  228.             if isdir(name):
  229.                 walk(name, func, arg)
  230.             
  231.         isdir(name)
  232.     
  233.  
  234.  
  235. def expanduser(path):
  236.     if path[:1] != '~':
  237.         return path
  238.     
  239.     i = 1
  240.     n = len(path)
  241.     while i < n and path[i] not in '/\\':
  242.         i = i + 1
  243.     if i == 1:
  244.         if 'HOME' in os.environ:
  245.             userhome = os.environ['HOME']
  246.         elif 'HOMEPATH' not in os.environ:
  247.             return path
  248.         else:
  249.             
  250.             try:
  251.                 drive = os.environ['HOMEDRIVE']
  252.             except KeyError:
  253.                 drive = ''
  254.  
  255.             userhome = join(drive, os.environ['HOMEPATH'])
  256.     else:
  257.         return path
  258.     return userhome + path[i:]
  259.  
  260.  
  261. def expandvars(path):
  262.     if '$' not in path:
  263.         return path
  264.     
  265.     import string as string
  266.     varchars = string.letters + string.digits + '_-'
  267.     res = ''
  268.     index = 0
  269.     pathlen = len(path)
  270.     while index < pathlen:
  271.         c = path[index]
  272.         if c == "'":
  273.             path = path[index + 1:]
  274.             pathlen = len(path)
  275.             
  276.             try:
  277.                 index = path.index("'")
  278.                 res = res + "'" + path[:index + 1]
  279.             except ValueError:
  280.                 res = res + path
  281.                 index = pathlen - 1
  282.             except:
  283.                 None<EXCEPTION MATCH>ValueError
  284.             
  285.  
  286.         None<EXCEPTION MATCH>ValueError
  287.         if c == '$':
  288.             None if path[index + 1:index + 2] == '$' else None<EXCEPTION MATCH>ValueError
  289.             var = ''
  290.             index = index + 1
  291.             c = path[index:index + 1]
  292.             while c != '' and c in varchars:
  293.                 var = var + c
  294.                 index = index + 1
  295.                 c = path[index:index + 1]
  296.             if var in os.environ:
  297.                 res = res + os.environ[var]
  298.             
  299.             if c != '':
  300.                 res = res + c
  301.             
  302.         else:
  303.             res = res + c
  304.         index = index + 1
  305.     return res
  306.  
  307.  
  308. def normpath(path):
  309.     path = path.replace('\\', '/')
  310.     (prefix, path) = splitdrive(path)
  311.     while path[:1] == '/':
  312.         prefix = prefix + '/'
  313.         path = path[1:]
  314.     comps = path.split('/')
  315.     i = 0
  316.     while i < len(comps):
  317.         if comps[i] == '.':
  318.             del comps[i]
  319.             continue
  320.         if comps[i] == '..' and i > 0 and comps[i - 1] not in ('', '..'):
  321.             del comps[i - 1:i + 1]
  322.             i = i - 1
  323.             continue
  324.         if comps[i] == '' and i > 0 and comps[i - 1] != '':
  325.             del comps[i]
  326.             continue
  327.         i = i + 1
  328.     if not prefix and not comps:
  329.         comps.append('.')
  330.     
  331.     return prefix + '/'.join(comps)
  332.  
  333.  
  334. def abspath(path):
  335.     if not isabs(path):
  336.         path = join(os.getcwd(), path)
  337.     
  338.     return normpath(path)
  339.  
  340. realpath = abspath
  341. supports_unicode_filenames = False
  342.